From 9d751f30fd6fb665b6d25b877b362bb39002cb27 Mon Sep 17 00:00:00 2001 From: Philip Prindeville Date: Fri, 12 Dec 2025 12:43:07 -0700 Subject: [PATCH] bind: manual fix for IPv6 server unreachable noise Until we have a failsafe way of detecting no IPv6 internet connectivity automatically, allow the users to set it manually for now. Signed-off-by: Philip Prindeville --- net/bind/Makefile | 2 +- net/bind/files/bind/named.conf | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/net/bind/Makefile b/net/bind/Makefile index cfea57f22e..f359dbcd0f 100644 --- a/net/bind/Makefile +++ b/net/bind/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=bind PKG_VERSION:=9.20.15 -PKG_RELEASE:=2 +PKG_RELEASE:=3 USERID:=bind=57:bind=57 PKG_MAINTAINER:=Noah Meyerhans diff --git a/net/bind/files/bind/named.conf b/net/bind/files/bind/named.conf index 8eb6be694d..905f10a4ee 100644 --- a/net/bind/files/bind/named.conf +++ b/net/bind/files/bind/named.conf @@ -7,6 +7,9 @@ options { // This is used e.g. by isc-dhcp allow-new-zones yes; + + // Uncomment this if you don't have IPv6 connectivity + //query-source-v6 none; }; // prime the server with knowledge of the root servers -- 2.30.2